package org.adoxx.all2abl.service.webservice; import java.net.MalformedURLException; import java.net.URL; import javax.xml.namespace.QName; import javax.xml.ws.WebEndpoint; import javax.xml.ws.WebServiceClient; import javax.xml.ws.WebServiceFeature; import javax.xml.ws.Service; /** * This class was generated by Apache CXF 2.7.3 * 2013-03-22T13:01:17.729+01:00 * Generated source version: 2.7.3 * */ @WebServiceClient(name = "ALL2ABLWebServiceService", wsdlLocation = "http://www.adoxx.org/ALL2ABL/services/ALL2ABLWebServicePort?wsdl", targetNamespace = "http://webservice.service.all2abl.adoxx.org/") public class ALL2ABLWebServiceService extends Service { public final static URL WSDL_LOCATION; public final static QName SERVICE = new QName("http://webservice.service.all2abl.adoxx.org/", "ALL2ABLWebServiceService"); public final static QName ALL2ABLWebServicePort = new QName("http://webservice.service.all2abl.adoxx.org/", "ALL2ABLWebServicePort"); static { URL url = null; try { url = new URL("http://www.adoxx.org/ALL2ABL/services/ALL2ABLWebServicePort?wsdl"); } catch (MalformedURLException e) { java.util.logging.Logger.getLogger(ALL2ABLWebServiceService.class.getName()) .log(java.util.logging.Level.INFO, "Can not initialize the default wsdl from {0}", "http://www.adoxx.org/ALL2ABL/services/ALL2ABLWebServicePort?wsdl"); } WSDL_LOCATION = url; } public ALL2ABLWebServiceService(URL wsdlLocation) { super(wsdlLocation, SERVICE); } public ALL2ABLWebServiceService(URL wsdlLocation, QName serviceName) { super(wsdlLocation, serviceName); } public ALL2ABLWebServiceService() { super(WSDL_LOCATION, SERVICE); } /** * * @return * returns ALL2ABLWebService */ @WebEndpoint(name = "ALL2ABLWebServicePort") public ALL2ABLWebService getALL2ABLWebServicePort() { return super.getPort(ALL2ABLWebServicePort, ALL2ABLWebService.class); } /** * * @param features * A list of {@link javax.xml.ws.WebServiceFeature} to configure on the proxy. Supported features not in the features parameter will have their default values. * @return * returns ALL2ABLWebService */ @WebEndpoint(name = "ALL2ABLWebServicePort") public ALL2ABLWebService getALL2ABLWebServicePort(WebServiceFeature... features) { return super.getPort(ALL2ABLWebServicePort, ALL2ABLWebService.class, features); } }